home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / CH6 / EMAGA6 / control / client / interfaces / loadscreen.gui < prev    next >
Text File  |  2003-10-26  |  3KB  |  99 lines

  1. new GuiControlProfile ("LoadScreenContentProfile")
  2. {
  3.    opaque = true;
  4.    fillColor = "200 200 200";
  5.    border = true;
  6.    borderColor   = "0 0 0";
  7. };
  8.  
  9. //--- OBJECT WRITE BEGIN ---
  10. new GuiChunkedBitmapCtrl(LoadScreen) {
  11.    profile = "GuiContentProfile";
  12.    horizSizing = "width";
  13.    vertSizing = "height";
  14.    position = "0 0";
  15.    extent = "640 480";
  16.    minExtent = "8 8";
  17.    visible = "1";
  18.    helpTag = "0";
  19.    bitmap = "./interfaces/emaga_background";
  20.    useVariable = "0";
  21.    tile = "0";
  22.  
  23.    new GuiControl() {
  24.       profile = "GuiWindowProfile";
  25.       horizSizing = "center";
  26.       vertSizing = "center";
  27.       position = "92 86";
  28.       extent = "455 308";
  29.       minExtent = "8 8";
  30.       visible = "1";
  31.       helpTag = "0";
  32.  
  33.       new GuiTextCtrl(LOAD_MapName) {
  34.          profile = "GuiMediumTextProfile";
  35.          horizSizing = "right";
  36.          vertSizing = "bottom";
  37.          position = "7 6";
  38.          extent = "100 28";
  39.          minExtent = "8 8";
  40.          visible = "1";
  41.          helpTag = "0";
  42.          text = "Map Name";
  43.          maxLength = "255";
  44.       };
  45.       new GuiMLTextCtrl(LOAD_MapDescription) {
  46.          profile = "GuiMLTextProfile";
  47.          horizSizing = "right";
  48.          vertSizing = "bottom";
  49.          position = "7 62";
  50.          extent = "440 14";
  51.          minExtent = "8 8";
  52.          visible = "1";
  53.          helpTag = "0";
  54.          lineSpacing = "2";
  55.          allowColorChars = "0";
  56.          maxChars = "-1";
  57.       };
  58.       new GuiProgressCtrl(LoadingProgress) {
  59.          profile = "GuiProgressProfile";
  60.          horizSizing = "right";
  61.          vertSizing = "top";
  62.          position = "128 262";
  63.          extent = "262 25";
  64.          minExtent = "8 8";
  65.          visible = "1";
  66.          helpTag = "0";
  67.  
  68.          new GuiTextCtrl(LoadingProgressTxt) {
  69.             profile = "GuiProgressTextProfile";
  70.             horizSizing = "right";
  71.             vertSizing = "bottom";
  72.             position = "-4 3";
  73.             extent = "262 20";
  74.             minExtent = "8 8";
  75.             visible = "1";
  76.             helpTag = "0";
  77.             text = "Loading Map";
  78.             maxLength = "255";
  79.          };
  80.       };
  81.       new GuiButtonCtrl() {
  82.          profile = "GuiButtonProfile";
  83.          horizSizing = "right";
  84.          vertSizing = "top";
  85.          position = "58 262";
  86.          extent = "65 25";
  87.          minExtent = "20 20";
  88.          visible = "1";
  89.          command = "disconnect();";
  90.          accelerator = "escape";
  91.          helpTag = "0";
  92.          text = "Cancel";
  93.          groupNum = "-1";
  94.          buttonType = "PushButton";
  95.       };
  96.    };
  97. };
  98. //--- OBJECT WRITE END ---
  99.